home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1997 September / Macworld (1997-09).dmg / Shareware World / Comms & Internet / SB114 / Plugins / rand < prev    next >
Text File  |  1997-01-01  |  591b  |  20 lines

  1. 'Sample Plugin
  2. '© John Bafford, 1996-1997
  3.  
  4. *COMMAND rand -1 0
  5. *GLOBAL str string
  6. *GLOBAL str lastnick no one
  7. *GLOBAL int integer
  8. *GLOBAL bool boolean
  9. *GLOBAL int times 0
  10. *ENDCONF
  11.  
  12. @SET string string of
  13. @SET integer 123123
  14. @SET boolean TRUE
  15. @ADDONE times
  16. SAY $NICK, $GLOBAL:lastnick. was the last person to use this plugin. This plugin has been used $GLOBAL:times. times since this bot has been up.
  17. SAY $NICK, your random number is $RAND:int:1,8., and your random nick is $RAND:nick.
  18. SAY Your globals are "$GLOBAL:string.", "$GLOBAL:integer.", and "$GLOBAL:boolean.".
  19. @SET lastnick $NICK
  20. @END